home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 30 / PC Gamer IT CD 30 1-2.iso / MOTS / GAMEDATA / RESOURCE / JKMRES.GOO / cog_00_desttrail.cog < prev    next >
Text File  |  1998-02-25  |  817b  |  41 lines

  1. # Jedi Knight Cog Script
  2. #
  3. # 00_DESTTRAIL.COG
  4. #
  5. # Leave a trail of particles behind the force destruction projectile
  6. #
  7. # [YB]
  8. #
  9. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  10.  
  11. flags=0x240
  12.  
  13. symbols
  14.  
  15. template    trail=+dest_trail                local
  16. int         dummy                            local
  17.  
  18. message     created
  19. message     pulse
  20.  
  21. end
  22.  
  23. # ========================================================================================
  24.  
  25. code
  26.  
  27. created:
  28.    if (trail != -1) SetThingPulse(GetSenderRef(), 0.05);
  29.    Return;
  30.  
  31. # ........................................................................................
  32.  
  33. pulse:
  34.    dummy = CreateThing(trail, GetSenderRef());
  35.    if(jkGetBubbleDistance(GetSenderRef()) <= 1.0) DestroyThing(GetSenderRef());
  36.    Return;
  37.  
  38. end
  39.  
  40.  
  41.